home *** CD-ROM | disk | FTP | other *** search
- Path: news.clark.net!not-for-mail
- From: gusty@clark.net (Harlan Messinger)
- Newsgroups: comp.lang.c++
- Subject: Re: Debug Build vs Release Build
- Date: 30 Mar 1996 14:05:30 GMT
- Organization: Clark Internet Services, Inc., Ellicott City, MD USA
- Message-ID: <4jjf3a$987@clarknet.clark.net>
- References: <315C42D0.3C68@djttd.com>
- NNTP-Posting-Host: explorer.clark.net
- Mime-Version: 1.0
- Content-Type: TEXT/PLAIN; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- X-Newsreader: TIN [UNIX 1.3 950726BETA PL0]
-
- John Cui (jcui@djttd.com) wrote:
- : I'm using VC++ 1.52 to debug build my application which loads a DLL.
- : Worked! But if I do a relase build, Got GPF! Any idears?
- : Thanks.
-
- One possibility is that one of the optimizations applied by default in
- Release is causing trouble. Under the Compiler options, turn off
- optimizations for the Release build and see if that solves the problem. If
- so, then you can turn them back on, and then shut the individual
- optimizations off one by one until you find out which one is the culprit.
-
-